home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Whowhat.dxr / 00002_Navigation framework.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  461 b   |  41 lines

  1. global gMasterData, gSection
  2.  
  3. on GoOn
  4.   stopSound2()
  5.   case gSection of
  6.     #intro:
  7.       go1()
  8.     1:
  9.       go2()
  10.     2:
  11.       storeSpLocs()
  12.       leaveThisMovie()
  13.   end case
  14. end
  15.  
  16. on goBack
  17.   stopSound2()
  18.   case gSection of
  19.     1:
  20.       goIntro()
  21.     2:
  22.       storeSpLocs()
  23.       go1()
  24.   end case
  25. end
  26.  
  27. on leaveThisMovie
  28.   stopSound2()
  29.   cursor(4)
  30.   go(1, "Menu3")
  31. end
  32.  
  33. on notePadButton
  34.   DoNotepad()
  35. end
  36.  
  37. on continueNext
  38.   stopSound2()
  39.   go(the frame + 1)
  40. end
  41.